home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / rev / chap9 / q1.java < prev    next >
Encoding:
Java Source  |  1997-05-08  |  276 b   |  17 lines

  1. class Example1 {
  2.    public static void main(String[] args) {
  3.       Example1 e = new Example1();
  4.       e.test(5);
  5.    }
  6.  
  7.    int test(int i) {
  8.       System.out.println("int");
  9.       return 1;
  10.    }
  11.  
  12.    void test(long i) {
  13.       System.out.println("long");
  14.    }
  15.  
  16. }
  17.